www.gusucode.com > RQCMS PHP文章管理系统 v2.3PHP源码程序 > RQCMS PHP文章管理系统 v2.3/rqcms_v2.3/rqcms_v2.3/core/manager/view/login.php

    <?php
print <<<EOT
<div id="simpleHeader"></div>
<div class="loginBox">
  <table border="0" cellpadding="5" cellspacing="1">
    <form method="post" action="{$admin_url}?file=login">
      <input type="hidden" name="action" value="login" />
      <tr>
        <td nowrap="nowrap">帐号:<br />
          <input class="formfield" name="username" value="$lusername" style="width:150px" /></td>
      </tr>
      <tr>
        <td nowrap="nowrap">密码:<br />
          <input class="formfield" type="password" name="password" value="$lpassword" style="width:150px" /></td>
      </tr>
	  <tr>
        <td> <input name="rememberme" type="checkbox" value="1">记住我</td>
      </tr>
      <tr>
        <td><input type="submit" class="formbutton" value="登陆" />
{$loginerr}</td>
      </tr>
    </form>
  </table>
</div>
EOT;
?>